home *** CD-ROM | disk | FTP | other *** search
/ Complete Linux / Complete Linux.iso / docs / apps / database / postgres / postgre4.z / postgre4 / src / access / index / internal.h < prev    next >
Encoding:
C/C++ Source or Header  |  1992-08-27  |  578 b   |  29 lines

  1. /*
  2.  * access/internal.h --
  3.  *    Internal definitions.
  4.  *
  5.  * Identification:
  6.  *    $Header: /private/postgres/src/access/index/RCS/internal.h,v 1.1 1991/01/29 15:20:19 cimarron Exp $
  7.  */
  8.  
  9. #ifndef    InternalDefined
  10. #define InternalDefined    1
  11.  
  12. #include "tmp/postgres.h"
  13. #include "access/skey.h"
  14. #include "utils/rel.h"
  15.  
  16. /*
  17.  * OperatorRelationFillScanKeyEntry --
  18.  *    Fills the scan key entry for an OPERATOR object.
  19.  */
  20. extern
  21. void
  22. OperatorRelationFillScanKeyEntry ARGS((
  23.     Relation    operatorRelation,
  24.     ObjectId    operatorObjectId,
  25.     ScanKeyEntry    entry
  26. ));
  27.  
  28. #endif    /* !defined(InternalDefined) */
  29.